Piano notes book, powered by Astro and React.
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

[...slug].astro 429 B

123456789101112131415161718
  1. ---
  2. import { getCollection } from 'astro:content';
  3. import Default from '../content/layouts/Default.astro';
  4. export const getStaticPaths = async () => {
  5. const entries = await getCollection('special');
  6. return entries.map(entry => ({
  7. params: { slug: entry.slug }, props: { entry },
  8. }));
  9. }
  10. const { entry } = Astro.props;
  11. const { Content } = await entry.render();
  12. ---
  13. <Default title={entry.data.title}>
  14. <Content />
  15. </Default>